projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1be40c
)
Fix "make bootstrap" build warning in tab-bar.el
author
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 22 Oct 2019 19:18:33 +0000
(21:18 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 22 Oct 2019 19:18:33 +0000
(21:18 +0200)
* lisp/tab-bar.el (require): Require seq when compiling to avoid a
compilation warning. The function it uses is autoloaded, but
autoloads aren't loaded when this is built (on "make bootstrap").
lisp/tab-bar.el
patch
|
blob
|
history
diff --git
a/lisp/tab-bar.el
b/lisp/tab-bar.el
index 098d7057e543578d373ebc94055d0a077b13f966..8350b4e69455a6250179a39bf0e76a85cab5151b 100644
(file)
--- a/
lisp/tab-bar.el
+++ b/
lisp/tab-bar.el
@@
-34,7
+34,9
@@
;;; Code:
-(eval-when-compile (require 'cl-lib))
+(eval-when-compile
+ (require 'cl-lib)
+ (require 'seq))
\f
(defgroup tab-bar nil